home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / emacs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  17.4 KB  |  734 lines

  1. /* Fully extensible Emacs, running on Unix, intended for GNU.
  2.    Copyright (C) 1985, 1986, 1987, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* Modified 1991 for 8-bit character support by Howard Gayle.
  22.  *  See chartab.c for details. */
  23.  
  24.  
  25. #include <signal.h>
  26. #include <errno.h>
  27.  
  28. #include "config.h"
  29. #include <stdio.h>
  30. #undef NULL
  31. #include "lisp.h"
  32. #include "commands.h"
  33.  
  34. #include <sys/types.h>
  35. #include <sys/file.h>
  36.  
  37. #ifdef VMS
  38. #include <ssdef.h>
  39. #endif
  40.  
  41. #ifdef USG5
  42. #include <fcntl.h>
  43. #endif
  44.  
  45. #ifdef BSD
  46. #include <sys/ioctl.h>
  47. #endif
  48.  
  49. #ifdef APOLLO
  50. #ifndef APOLLO_SR10
  51. #include <default_acl.h>
  52. #endif
  53. #endif
  54.  
  55. #ifndef O_RDWR
  56. #define O_RDWR 2
  57. #endif
  58.  
  59. #define PRIO_PROCESS 0
  60.  
  61. /* Command line args from shell, as list of strings */
  62. Lisp_Object Vcommand_line_args;
  63.  
  64. /* Hook run by `kill-emacs' before it does really anything.  */
  65. Lisp_Object Vkill_emacs_hook;
  66.  
  67. /* Set nonzero after Emacs has started up the first time.
  68.   Prevents reinitialization of the Lisp world and keymaps
  69.   on subsequent starts.  */
  70. int initialized;
  71.  
  72. /* Variable whose value is symbol giving operating system type */
  73. Lisp_Object Vsystem_type;
  74.   
  75. /* If non-zero, emacs should not attempt to use an window-specific code,
  76.    but instead should use the virtual terminal under which it was started */
  77. int inhibit_window_system;
  78.  
  79. #ifdef HAVE_X_WINDOWS
  80. /* If -d option is used, this variable points to the name of
  81.    the display to use.  */
  82. char *alternate_display;
  83. char **xargv;
  84. int xargc;
  85. #endif /* HAVE_X_WINDOWS */
  86.  
  87. #ifdef USG_SHARED_LIBRARIES
  88. /* If nonzero, this is the place to put the end of the writable segment
  89.    at startup.  */
  90.  
  91. unsigned int bss_end = 0;
  92. #endif
  93.  
  94. /* Nonzero means running Emacs without interactive terminal.  */
  95.  
  96. int noninteractive;
  97.  
  98. /* Value of Lisp variable `noninteractive'.
  99.    Normally same as C variable `noninteractive'
  100.    but nothing terrible happens if user sets this one.  */
  101.  
  102. int noninteractive1;
  103.  
  104. /* Signal code for the fatal signal that was received */
  105. int fatal_error_code;
  106.  
  107. /* Nonzero if handling a fatal error already */
  108. int fatal_error_in_progress;
  109.  
  110. /* Handle bus errors, illegal instruction, etc. */
  111. fatal_error_signal (sig)
  112.      int sig;
  113. {
  114. #ifdef BSD
  115.   int tpgrp;
  116. #endif /* BSD */
  117.  
  118.   fatal_error_code = sig;
  119.   signal (sig, SIG_DFL);
  120.  
  121.   /* If fatal error occurs in code below, avoid infinite recursion.  */
  122.   if (fatal_error_in_progress)
  123.     kill (getpid (), fatal_error_code);
  124.  
  125.   fatal_error_in_progress = 1;
  126.  
  127.   /* If we are controlling the terminal, reset terminal modes */
  128. #ifdef BSD
  129.   if (ioctl(0, TIOCGPGRP, &tpgrp) == 0
  130.       && tpgrp == getpgrp (0))
  131. #endif /* BSD */
  132.     {
  133.       reset_sys_modes ();
  134.       if (sig != SIGTERM)
  135.     fprintf (stderr, "Fatal error (%d).", sig);
  136.     }
  137.  
  138.   /* Clean up */
  139. #ifdef subprocesses
  140.   kill_buffer_processes (Qnil);
  141. #endif
  142.   Fdo_auto_save (Qt);
  143.  
  144. #ifdef CLASH_DETECTION
  145.   unlock_all_files ();
  146. #endif /* CLASH_DETECTION */
  147.  
  148. #ifdef VMS
  149.   kill_vms_processes ();
  150.   LIB$STOP (SS$_ABORT);
  151. #else
  152.   /* Signal the same code; this time it will really be fatal.  */
  153.   kill (getpid (), fatal_error_code);
  154. #endif /* not VMS */
  155. }
  156.  
  157. /* Code for dealing with Lisp access to the Unix command line */
  158.  
  159. static
  160. init_cmdargs (argc, argv, skip_args)
  161.      int argc;
  162.      char **argv;
  163.      int skip_args;
  164. {
  165.   register int i;
  166.  
  167.   Vcommand_line_args = Qnil;
  168.  
  169.   for (i = argc - 1; i >= 0; i--)
  170.     {
  171.       if (i == 0 || i > skip_args)
  172.     Vcommand_line_args
  173.       = Fcons (build_string (argv[i]), Vcommand_line_args);
  174.     }
  175. }
  176.  
  177.  
  178. #ifdef VMS
  179. #ifdef LINK_CRTL_SHARE
  180. #ifdef SHAREABLE_LIB_BUG
  181. extern noshare char **environ;
  182. #endif /* SHAREABLE_LIB_BUG */
  183. #endif /* LINK_CRTL_SHARE */
  184. #endif /* VMS */
  185.  
  186. /* ARGSUSED */
  187. main (argc, argv, envp)
  188.      int argc;
  189.      char **argv;
  190.      char **envp;
  191. {
  192.   int skip_args = 0;
  193.   extern int errno;
  194.   extern void malloc_warning ();
  195.  
  196. /* Map in shared memory, if we are using that.  */
  197. #ifdef HAVE_SHM
  198.   if (argc > 1 && !strcmp (argv[1], "-nl"))
  199.     {
  200.       map_in_data (0);
  201.       /* The shared momory was just restored, which clobbered this.  */
  202.       skip_args = 1;
  203.     }
  204.   else
  205.     {
  206.       map_in_data (1);
  207.       /* The shared momory was just restored, which clobbered this.  */
  208.       skip_args = 0;
  209.     }
  210. #endif
  211.  
  212. #ifdef VMS
  213.   /* If -map specified, map the data file in */
  214.   if (argc > 2 && ! strcmp (argv[1], "-map"))
  215.     {
  216.       skip_args = 2;
  217.       mapin_data (argv[2]);
  218.     }
  219.  
  220. #ifdef LINK_CRTL_SHARE
  221. #ifdef SHAREABLE_LIB_BUG
  222.   /* Bletcherous shared libraries! */
  223.   if (!stdin)
  224.     stdin = fdopen (0, "r");
  225.   if (!stdout)
  226.     stdout = fdopen (1, "w");
  227.   if (!stderr)
  228.     stderr = fdopen (2, "w");
  229.   if (!environ)
  230.     environ = envp;
  231. #endif /* SHAREABLE_LIB_BUG */
  232. #endif /* LINK_CRTL_SHARE */
  233. #endif /* VMS */
  234.  
  235. #ifdef USG_SHARED_LIBRARIES
  236.   if (bss_end)
  237.     brk (bss_end);
  238. #endif
  239.  
  240.   clearerr (stdin);
  241.  
  242. #ifdef APOLLO
  243. #ifndef APOLLO_SR10
  244.   /* If USE_DOMAIN_ACLS environment variable exists,
  245.      use ACLs rather than UNIX modes. */
  246.   if (egetenv ("USE_DOMAIN_ACLS"))
  247.     default_acl (USE_DEFACL);
  248. #endif
  249. #endif /* APOLLO */
  250.  
  251. #ifndef SYSTEM_MALLOC
  252.   /* Arrange for warnings when nearly out of space.  */
  253.   malloc_init (0, malloc_warning);
  254. #endif
  255.  
  256. #ifdef HIGHPRI
  257.   setpriority (PRIO_PROCESS, getpid (), HIGHPRI);
  258.   setuid (getuid ());
  259. #endif HIGHPRI
  260.  
  261.   inhibit_window_system = 0;
  262.  
  263. #ifdef HAVE_X_WINDOWS
  264.   xargv = argv;
  265.   xargc = argc;
  266. #endif
  267.  
  268. /* Handle the -t switch, which specifies filename to use as terminal */
  269.   if (skip_args + 2 < argc && !strcmp (argv[skip_args + 1], "-t"))
  270.     {
  271.       skip_args += 2;
  272.       close (0);
  273.       close (1);
  274.       open (argv[skip_args], O_RDWR, 2 );
  275.       dup (0);
  276.       fprintf (stderr, "Using %s\n", argv[skip_args]);
  277. #ifdef HAVE_X_WINDOWS
  278.       inhibit_window_system = 1;    /* -t => -nw */
  279. #endif
  280.     }
  281. #ifdef HAVE_X_WINDOWS
  282. /* Handle the -d switch, which means use a different display for X */
  283.   if (skip_args + 2 < argc && (!strcmp (argv[skip_args + 1], "-d") ||
  284.                    !strcmp (argv[skip_args + 1], "-display")))
  285.     {
  286.       skip_args += 2;
  287.       alternate_display = argv[skip_args];
  288.     } 
  289.   else
  290.     alternate_display = 0;
  291. #endif    /* HAVE_X_WINDOWS */
  292.  
  293.   if (skip_args + 1 < argc
  294.       && (!strcmp (argv[skip_args + 1], "-nw")))
  295.     {
  296.       skip_args += 1;
  297.       inhibit_window_system = 1;
  298.     }
  299.  
  300. /* Handle the -batch switch, which means don't do interactive display.  */
  301.   noninteractive = 0;
  302.   if (skip_args + 1 < argc && !strcmp (argv[skip_args + 1], "-batch"))
  303.     {
  304.       skip_args += 1;
  305.       noninteractive = 1;
  306.     }
  307.  
  308.   if (
  309. #ifndef CANNOT_DUMP
  310.       ! noninteractive || initialized
  311. #else
  312.       1
  313. #endif
  314.       )
  315.     {
  316.       /* Don't catch these signals in batch mode if not initialized.
  317.      On some machines, this sets static data that would make
  318.      signal fail to work right when the dumped Emacs is run.  */
  319. /**
  320.  **  (sjk++) cast to keep gcc quite.
  321.  **/
  322. #ifdef atarist
  323.       signal (SIGHUP, (__Sigfunc)fatal_error_signal);
  324.       signal (SIGQUIT, (__Sigfunc)fatal_error_signal);
  325.       signal (SIGILL, (__Sigfunc)fatal_error_signal);
  326.       signal (SIGTRAP, (__Sigfunc)fatal_error_signal);
  327.       signal (SIGIOT, (__Sigfunc)fatal_error_signal);
  328. #ifdef SIGEMT
  329.       signal (SIGEMT, (__Sigfunc)fatal_error_signal);
  330. #endif
  331.       signal (SIGFPE, (__Sigfunc)fatal_error_signal);
  332.       signal (SIGBUS, (__Sigfunc)fatal_error_signal);
  333.       signal (SIGSEGV, (__Sigfunc)fatal_error_signal);
  334.       signal (SIGSYS, (__Sigfunc)fatal_error_signal);
  335.       signal (SIGTERM, (__Sigfunc)fatal_error_signal);
  336. #ifdef SIGXCPU
  337.       signal (SIGXCPU, (__Sigfunc)fatal_error_signal);
  338. #endif
  339. #ifdef SIGXFSZ
  340.       signal (SIGXFSZ, (__Sigfunc)fatal_error_signal);
  341. #endif SIGXFSZ
  342. #endif /* atarist */
  343.  
  344. #ifdef AIX
  345.       signal (SIGDANGER, fatal_error_signal);
  346.       signal (20, fatal_error_signal);
  347.       signal (21, fatal_error_signal);
  348.       signal (22, fatal_error_signal);
  349.       signal (23, fatal_error_signal);
  350.       signal (24, fatal_error_signal);
  351.       signal (SIGAIO, fatal_error_signal);
  352.       signal (SIGPTY, fatal_error_signal);
  353.       signal (SIGIOINT, fatal_error_signal);
  354.       signal (SIGGRANT, fatal_error_signal);
  355.       signal (SIGRETRACT, fatal_error_signal);
  356.       signal (SIGSOUND, fatal_error_signal);
  357.       signal (SIGMSG, fatal_error_signal);
  358. #endif /* AIX */
  359.     }
  360.  
  361.   noninteractive1 = noninteractive;
  362.  
  363. /* Perform basic initializations (not merely interning symbols) */
  364.  
  365.   if (!initialized)
  366.     {
  367.       init_alloc_once ();
  368.       init_obarray ();
  369.       init_eval_once ();
  370.       init_syntax_once ();    /* Create standard syntax table.  */
  371.       init_case_table_once ();    /* Create standard case table.  */
  372.       init_char_table_once ();    /* Create standard char tables.  */
  373.       init_sort_table_once ();    /* Create standard sort tables.  */
  374.       init_trans_table_once ();    /* Create standard trans tables.  */
  375.         /* Must be done before init_buffer */
  376.       init_buffer_once ();    /* Create buffer table and some buffers */
  377.       init_minibuf_once ();    /* Create list of minibuffers */
  378.         /* Must precede init_window_once */
  379.       init_window_once ();    /* Init the window system */
  380.     }
  381.  
  382.   init_alloc ();
  383. #ifdef MAINTAIN_ENVIRONMENT
  384.   init_environ ();
  385. #endif
  386.   init_eval ();
  387.   init_data ();
  388.   init_read ();
  389.  
  390.   init_cmdargs (argc, argv, skip_args);    /* Create list Vcommand_line_args */
  391.   init_buffer ();    /* Init default directory of main buffer */
  392.   if (!noninteractive)
  393.     {
  394. #ifdef VMS
  395.       init_vms_input ();/* init_display calls get_screen_size, that needs this */
  396. #endif /* VMS */
  397.       init_display ();    /* Determine terminal type.  init_sys_modes uses results */
  398.     }
  399.   init_keyboard ();    /* This too must precede init_sys_modes */
  400.   init_callproc ();    /* And this too. */
  401.   init_sys_modes ();    /* Init system terminal modes (RAW or CBREAK, etc.) */
  402.   init_xdisp ();
  403.   init_macros ();
  404.   init_editfns ();
  405. #ifdef VMS
  406.   init_vmsfns ();
  407. #endif /* VMS */
  408. #ifdef subprocesses
  409.   init_process ();
  410. #endif /* subprocesses */
  411.  
  412. /**
  413.  **  (sjk++) Do the nasties at the start (atari st specific inits)
  414.  **/
  415. #if defined(atarist) 
  416.   INIT_SYSTEM;
  417. #endif
  418.  
  419. /* Intern the names of all standard functions and variables; define standard keys */
  420.  
  421.   if (!initialized)
  422.     {
  423.       /* The basic levels of Lisp must come first */
  424.       /* And data must come first of all
  425.      for the sake of symbols like error-message */
  426.       syms_of_data ();
  427.       syms_of_alloc ();
  428. #ifdef MAINTAIN_ENVIRONMENT
  429.       syms_of_environ ();
  430. #endif MAINTAIN_ENVIRONMENT
  431.       syms_of_read ();
  432.       syms_of_print ();
  433.       syms_of_eval ();
  434.       syms_of_fns ();
  435.  
  436.       syms_of_abbrev ();
  437.       syms_of_buffer ();
  438.       syms_of_bytecode ();
  439.       syms_of_callint ();
  440.       syms_of_case_table ();
  441.       syms_of_casefiddle ();
  442.       syms_of_callproc ();
  443.       syms_of_char_table ();
  444.       syms_of_cmds ();
  445. #ifndef NO_DIR_LIBRARY
  446.       syms_of_dired ();
  447. #endif /* not NO_DIR_LIBRARY */
  448.       syms_of_display ();
  449.       syms_of_doc ();
  450.       syms_of_editfns ();
  451.       syms_of_emacs ();
  452.       syms_of_fileio ();
  453. #ifdef CLASH_DETECTION
  454.       syms_of_filelock ();
  455. #endif /* CLASH_DETECTION */
  456.       syms_of_indent ();
  457.       syms_of_keyboard ();
  458.       syms_of_keymap ();
  459.       syms_of_macros ();
  460.       syms_of_marker ();
  461.       syms_of_minibuf ();
  462.       syms_of_mocklisp ();
  463. #ifdef subprocesses
  464.       syms_of_process ();
  465. #endif /* subprocesses */
  466.       syms_of_search ();
  467.       syms_of_sort_table ();
  468.       syms_of_syntax ();
  469.       syms_of_trans_table ();
  470.       syms_of_undo ();
  471.       syms_of_window ();
  472.       syms_of_xdisp ();
  473. #ifdef HAVE_X_WINDOWS
  474.       syms_of_xfns ();
  475. #ifdef HAVE_X_MENU
  476.       syms_of_xmenu ();
  477. #endif /* HAVE_X_MENU */
  478. #endif /* HAVE_X_WINDOWS */
  479.  
  480. #ifdef SYMS_SYSTEM
  481.       SYMS_SYSTEM;
  482. #endif
  483.  
  484. #ifdef SYMS_MACHINE
  485.       SYMS_MACHINE;
  486. #endif
  487.  
  488.       keys_of_casefiddle ();
  489.       keys_of_cmds ();
  490.       keys_of_buffer ();
  491.       keys_of_keyboard ();
  492.       keys_of_keymap ();
  493.       keys_of_macros ();
  494.       keys_of_minibuf ();
  495.       keys_of_window ();
  496.     }
  497.  
  498.   if (!initialized)
  499.     {
  500.       /* Handle -l loadup-and-dump, args passed by Makefile. */
  501.       if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l"))
  502.     Vtop_level = Fcons (intern ("load"),
  503.                 Fcons (build_string (argv[2 + skip_args]), Qnil));
  504. #ifdef CANNOT_DUMP
  505.       /* Unless next switch is -nl, load "loadup.el" first thing.  */
  506.       if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl")))
  507.     Vtop_level = Fcons (intern ("load"),
  508.                 Fcons (build_string ("loadup.el"), Qnil));
  509. #endif /* CANNOT_DUMP */
  510.     }
  511.  
  512.   initialized = 1;
  513.  
  514.   /* Enter editor command loop.  This never returns.  */
  515.   Frecursive_edit ();
  516.   /* NOTREACHED */
  517. }
  518.  
  519. DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
  520.   "Exit the Emacs job and kill it.  ARG means no query.\n\
  521. If emacs is running noninteractively and ARG is an integer,\n\
  522. return ARG as the exit program code.")
  523.   (arg)
  524.      Lisp_Object arg;
  525. {
  526.   Lisp_Object answer;
  527.   int i;
  528.   struct gcpro gcpro1;
  529.  
  530.   GCPRO1 (arg);
  531.  
  532.   if (!NULL (Vkill_emacs_hook))
  533.     call0 (Vkill_emacs_hook);
  534.  
  535.   if (feof (stdin))
  536.     arg = Qt;
  537.  
  538. #ifdef subprocesses
  539.   kill_buffer_processes (Qnil);
  540. #endif /* subprocesses */
  541.  
  542. #ifdef VMS
  543.   kill_vms_processes ();
  544. #endif /* VMS */
  545.  
  546.   Fdo_auto_save (Qt);
  547.  
  548. #ifdef CLASH_DETECTION
  549.   unlock_all_files ();
  550. #endif /* CLASH_DETECTION */
  551.  
  552.   fflush (stdout);
  553.   reset_sys_modes ();
  554.   UNGCPRO;
  555.  
  556. /* Is it really necessary to do this deassign
  557.    when we are going to exit anyway?  */
  558. /* #ifdef VMS
  559.   stop_vms_input ();
  560.  #endif  */
  561.   stuff_buffered_input (arg);
  562.  
  563. /**
  564.  **  (sjk++) why fake out a signal that we never see?
  565.  **/
  566. #if defined(atarist)
  567. #undef SIGIO
  568. #endif 
  569.  
  570. #ifdef SIGIO
  571.   /* There is a tendency for a SIGIO signal to arrive within exit,
  572.      and cause a SIGHUP because the input descriptor is already closed.  */
  573.   unrequest_sigio ();
  574.   signal (SIGIO, SIG_IGN);
  575. #endif
  576.   exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg)
  577. #ifdef VMS
  578.     : 1
  579. #else
  580.     : 0
  581. #endif
  582.     );
  583.   /* NOTREACHED */
  584. }
  585.  
  586. #ifndef CANNOT_DUMP
  587. /* Nothing like this can be implemented on an Apollo.
  588.    What a loss!  */
  589.  
  590. #ifdef HAVE_SHM
  591.  
  592. DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
  593.   "Dump current state of Emacs into data file FILENAME.\n\
  594. This function exists on systems that use HAVE_SHM.")
  595.   (intoname)
  596.      Lisp_Object intoname;
  597. {
  598.   extern int my_edata;
  599.   Lisp_Object tem;
  600.   extern void malloc_warning ();
  601.  
  602.   CHECK_STRING (intoname, 0);
  603.   intoname = Fexpand_file_name (intoname, Qnil);
  604.  
  605.   tem = Vpurify_flag;
  606.   Vpurify_flag = Qnil;
  607.  
  608.   fflush (stdout);
  609.   /* Tell malloc where start of impure now is */
  610.   /* Also arrange for warnings when nearly out of space.  */
  611. #ifndef SYSTEM_MALLOC
  612.   malloc_init (&my_edata, malloc_warning);
  613. #endif
  614.   map_out_data (XSTRING (intoname)->data);
  615.  
  616.   Vpurify_flag = tem;
  617.  
  618.   return Qnil;
  619. }
  620.  
  621. #else /* not HAVE_SHM */
  622.  
  623. DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
  624.   "Dump current state of Emacs into executable file FILENAME.\n\
  625. Take symbols from SYMFILE (presumably the file you executed to run Emacs).")
  626.   (intoname, symname)
  627.      Lisp_Object intoname, symname;
  628. {
  629.   extern int my_edata;
  630.   Lisp_Object tem;
  631.   extern void malloc_warning ();
  632.  
  633.   CHECK_STRING (intoname, 0);
  634.   intoname = Fexpand_file_name (intoname, Qnil);
  635.   if (!NULL (symname))
  636.     {
  637.       CHECK_STRING (symname, 0);
  638.       if (XSTRING (symname)->size)
  639.     symname = Fexpand_file_name (symname, Qnil);
  640.     }
  641.  
  642.   tem = Vpurify_flag;
  643.   Vpurify_flag = Qnil;
  644.  
  645.   fflush (stdout);
  646. #ifdef VMS
  647.   mapout_data (XSTRING (intoname)->data);
  648. #else
  649.   /* Tell malloc where start of impure now is */
  650.   /* Also arrange for warnings when nearly out of space.  */
  651. #ifndef SYSTEM_MALLOC
  652.   malloc_init (&my_edata, malloc_warning);
  653. #endif
  654.   unexec (XSTRING (intoname)->data,
  655.       !NULL (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0);
  656. #endif /* not VMS */
  657.  
  658.   Vpurify_flag = tem;
  659.  
  660.   return Qnil;
  661. }
  662.  
  663. #endif /* not HAVE_SHM */
  664.  
  665. #endif /* not CANNOT_DUMP */
  666.  
  667. #ifdef VMS
  668. #define SEPCHAR ','
  669. #else
  670. /**
  671.  **  (sjk)++ a reasonable guess.
  672.  **/
  673. #if defined(atarist)
  674. #define SEPCHAR ','
  675. #else
  676. #define SEPCHAR ':'
  677. #endif
  678. #endif
  679.  
  680. Lisp_Object
  681. decode_env_path (evarname, defalt)
  682.      char *evarname, *defalt;
  683. {
  684.   register char *path, *p;
  685.   extern char *index ();
  686.  
  687.   Lisp_Object lpath;
  688.  
  689.   path = (char *) egetenv (evarname);
  690.   if (!path)
  691.     path = defalt;
  692.   lpath = Qnil;
  693.   while (1)
  694.     {
  695.       p = index (path, SEPCHAR);
  696.       if (!p) p = path + strlen (path);
  697.       lpath = Fcons (p - path ? make_string (path, p - path) : Qnil,
  698.              lpath);
  699.       if (*p)
  700.     path = p + 1;
  701.       else
  702.     break;
  703.     }
  704.   return Fnreverse (lpath);
  705. }
  706.  
  707. syms_of_emacs ()
  708. {
  709. #ifndef CANNOT_DUMP
  710. #ifdef HAVE_SHM
  711.   defsubr (&Sdump_emacs_data);
  712. #else
  713.   defsubr (&Sdump_emacs);
  714. #endif
  715. #endif /* not CANNOT_DUMP */
  716.  
  717.   defsubr (&Skill_emacs);
  718.  
  719.   DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
  720.     "Args passed by shell to Emacs, as a list of strings.");
  721.  
  722.   DEFVAR_LISP ("system-type", &Vsystem_type,
  723.     "Symbol indicating type of operating system you are using.");
  724.   Vsystem_type = intern (SYSTEM_TYPE);
  725.  
  726.   DEFVAR_BOOL ("noninteractive", &noninteractive1,
  727.     "Non-nil means Emacs is running without interactive terminal.");
  728.  
  729.   Vkill_emacs_hook = Qnil;
  730.  
  731.   DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
  732.     "Function called, if non-nil, whenever kill-emacs is called.");
  733. }
  734.